splash scrreen ekranında Handler().postDelayed
Merhaba; ben splash screen sayfası oluşturdum ve gayet güzel çalışıyordu ta ki sabah projeyi açana kadar..şu an tam olarak hata da değil sanırım ama neyden kaynaklandığını blmiyorum,çözemedim internette de bunnula ilgili bir şey bulamadım..
openDelayed kısmında şöyle bişey çıkıyo;
The method postDelayed(Runnable, long) in the type Handler is not applicable for the arguments (new Runnable()
{}, long)
kodlar;
-------------------------------------------------------------------
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
public class SplashScreen extends Activity {
// Splash screen timer
private static long SPLASH_TIME_OUT = 3000;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent i = new Intent(SplashScreen.this, MainActivity.class);
startActivity(i);
finish();
}
}, SPLASH_TIME_OUT);
}
}
-----------------------------------------------------
sadece bu kadar ama çalıştıramadım bi türlü..